Consider a list of prime numbers {p(n)}: 2,3,5,7,11,13,17... where p(n) is nth prime. Let q(n) represent number of primes less than n. What is the list {q(n)}
Answer: {q(n)}: 0,0,1,2,2,3,3,4,4,4,4,5... (Make sure kids understand what this list is)Now make another list of r(n) which is number of items in {q(n)} which are less than nVoila! we get back {p(n)}Why did this happen?Can you create another list which does the same?Advanced: Now create {P(n)} where P(n)=p(n)+n, and {Q(n)} where Q(n)=q(n)+n. What do you observe in these two lists?These two lists exclusively cover all counting numbers!So what would happen if {P(n)} was list of all square numbers? What would {Q(n)} be? How do we construct {P(n)}? What would {p(n)} be? and {q(n)}? Instructor Notes: If kids are unable to construct another list, ask them to try a random list of increasing numbers (numbers can repeat)Why does this hold true for all such lists?At this point, kids may come up with some intuitive explanationsLets try to represent these lists as dots and dashes. For example 1,2,2,2,3,3,6,7,7,7,7,9... is *|*|||*||***|*||||**...What is p(n) in terms of dots and dashes? (Number of dots to the left of nth dash)What is q(n) in terms of dots and dashes? (Number of dashes to the left of nth dot)Notice that the definitions are the same - just "dots" and "dashes" reversed!Instructor Notes: Encourage kids to think about it and absorb itCan you think about what happens when you add n to nth element of the list? What position are we getting now? Why are they unique and cover all countable numbers?